const runtime.expbits64
10 uses
runtime (current package)
softfloat64.go#L13: expbits64 uint = 11
softfloat64.go#L14: bias64 = -1<<(expbits64-1) + 1
softfloat64.go#L16: nan64 uint64 = (1<<expbits64-1)<<mantbits64 + 1<<(mantbits64-1) // quiet NaN, 0 payload
softfloat64.go#L17: inf64 uint64 = (1<<expbits64 - 1) << mantbits64
softfloat64.go#L18: neg64 uint64 = 1 << (expbits64 + mantbits64)
softfloat64.go#L30: sign = f & (1 << (mantbits64 + expbits64))
softfloat64.go#L32: exp = int(f>>mantbits64) & (1<<expbits64 - 1)
softfloat64.go#L35: case 1<<expbits64 - 1:
softfloat64.go#L118: if exp >= 1<<expbits64-1+bias64 {
softfloat64.go#L255: return f ^ (1 << (mantbits64 + expbits64))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |